home *** CD-ROM | disk | FTP | other *** search
/ Aminet 48 / Aminet 48 (2002)(GTI - Schatztruhe)[!][Apr 2002].iso / Aminet / text / edit / vim60src.lha / Vim / vim60 / src / proto / message.pro < prev    next >
Encoding:
Text File  |  2001-09-26  |  2.6 KB  |  55 lines

  1. /* message.c */
  2. int msg __ARGS((char_u *s));
  3. int msg_attr __ARGS((char_u *s, int attr));
  4. int msg_attr_keep __ARGS((char_u *s, int attr, int keep));
  5. char_u *msg_strtrunc __ARGS((char_u *s));
  6. void trunc_string __ARGS((char_u *s, char_u *buf, int room));
  7. int emsg __ARGS((char_u *s));
  8. int emsg2 __ARGS((char_u *s, char_u *a1));
  9. int emsgn __ARGS((char_u *s, long n));
  10. char_u *msg_trunc_attr __ARGS((char_u *s, int force, int attr));
  11. char_u *msg_may_trunc __ARGS((int force, char_u *s));
  12. void ex_messages __ARGS((exarg_T *eap));
  13. void wait_return __ARGS((int redraw));
  14. void set_keep_msg __ARGS((char_u *s));
  15. void msg_start __ARGS((void));
  16. void msg_starthere __ARGS((void));
  17. void msg_putchar __ARGS((int c));
  18. void msg_putchar_attr __ARGS((int c, int attr));
  19. void msg_outnum __ARGS((long n));
  20. void msg_home_replace __ARGS((char_u *fname));
  21. void msg_home_replace_hl __ARGS((char_u *fname));
  22. int msg_outtrans __ARGS((char_u *str));
  23. int msg_outtrans_attr __ARGS((char_u *str, int attr));
  24. int msg_outtrans_len __ARGS((char_u *str, int len));
  25. char_u *msg_outtrans_one __ARGS((char_u *p, int attr));
  26. int msg_outtrans_len_attr __ARGS((char_u *str, int len, int attr));
  27. void msg_make __ARGS((char_u *arg));
  28. int msg_outtrans_special __ARGS((char_u *str, int from));
  29. char_u *str2special __ARGS((char_u **sp, int from));
  30. void str2specialbuf __ARGS((char_u *sp, char_u *buf, int len));
  31. void msg_prt_line __ARGS((char_u *s));
  32. void msg_puts __ARGS((char_u *s));
  33. void msg_puts_title __ARGS((char_u *s));
  34. void msg_puts_long __ARGS((char_u *longstr));
  35. void msg_puts_long_attr __ARGS((char_u *longstr, int attr));
  36. void msg_puts_long_len_attr __ARGS((char_u *longstr, int len, int attr));
  37. void msg_puts_attr __ARGS((char_u *s, int attr));
  38. void mch_errmsg __ARGS((char *str));
  39. void mch_msg __ARGS((char *str));
  40. void msg_moremsg __ARGS((int full));
  41. void repeat_message __ARGS((void));
  42. void msg_clr_eos __ARGS((void));
  43. void msg_clr_cmdline __ARGS((void));
  44. int msg_end __ARGS((void));
  45. void msg_check __ARGS((void));
  46. void give_warning __ARGS((char_u *message, int hl));
  47. void msg_advance __ARGS((int col));
  48. int do_dialog __ARGS((int type, char_u *title, char_u *message, char_u *buttons, int dfltbutton, char_u *textfield));
  49. void display_confirm_msg __ARGS((void));
  50. int vim_dialog_yesno __ARGS((int type, char_u *title, char_u *message, int dflt));
  51. int vim_dialog_yesnocancel __ARGS((int type, char_u *title, char_u *message, int dflt));
  52. int vim_dialog_yesnoallcancel __ARGS((int type, char_u *title, char_u *message, int dflt));
  53. char_u *do_browse __ARGS((int saving, char_u *title, char_u *dflt, char_u *ext, char_u *initdir, char_u *filter, buf_T *buf));
  54. /* vim: set ft=c : */
  55.